home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dskut / dm313.zip / ZIP.MNU < prev   
Text File  |  1990-03-11  |  984b  |  53 lines

  1. Comment
  2. ===================================================
  3.  
  4. DM3 Menu Overlay * CopyRight 1989-90 By Marc Perkel
  5.  
  6. This is a File Compression Overlay fo DM3. This allows you to
  7. compress marked files.
  8.  
  9. ===================================================
  10. EndComment
  11.  
  12. if ColorScreen
  13.    BoxHeaderColor Yellow Mag
  14.    InverseColor Yellow Mag
  15.    BoxBorderColor LGreen Brown
  16.    BoxInsideColor Grey Brown
  17. else
  18.    BoxHeaderColor Black Grey
  19.    InverseColor Black Grey
  20.    BoxBorderColor White Black
  21.    BoxInsideColor Grey Black
  22. endif
  23.  
  24. ClearScreenOnExit Off
  25. BlankTime = 10
  26. BlankMessage = 'Executing DM3'
  27.  
  28. BoxHeader = ' Zip Menu '
  29. DrawBox 42 7 22 6
  30. TextColor Yellow Brown
  31. ClearLine 205
  32. TextColor Grey Brown
  33. UseArrows
  34. CapsColor Yellow Brown
  35.  
  36. Writeln
  37. Writeln '  View ZIP File'
  38. Writeln '  UnZip ZIP File'
  39. Write   '  Freshen ZIP File'
  40.  
  41. OnKey 'E'
  42.   ME %MenuFileName
  43.  
  44. OnKey 'V'
  45.   PKZIP -V %1|MORE
  46.  
  47. OnKey 'U'
  48.   PKUNZIP -O-D %1
  49.  
  50. OnKey 'F'
  51.   PKZIP -F %1
  52.  
  53.